home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
18
/
5
/
DISK1853.ZIP
/
BETWEEN.BAT
< prev
next >
Wrap
DOS Batch File
|
1989-08-20
|
896b
|
28 lines
echo OFF
if "%2" == "" goto HELP
if NOT "%4" == "" goto HELP
if NOT "%3" == "" goto USERFILE
echo B
echo Executing command: ASCOUT *.*+%1-%2
echo Displaying files on or after %1 and on or before %2...
ASCOUT *.*+%1-%2
goto END
:USERFILE
echo B
echo Executing command: ASCOUT %1+%2-%3
echo Displaying files matching %1 on or after %2 and on or before %3...
ASCOUT %1+%2-%3
goto END
:HELP
echo B
echo To find all files on drive between two dates,
echo type BETWEEN followed by beginning date, then ending date
echo Example: BETWEEN 1/1/88 12/31/88
echo To restrict search to certain files, precede dates with filespec
echo Examples: BETWEEN FILENAME.EXT 1/1/88 12/31/88
echo BETWEEN C:*.COM 1/1/88 12/31/88
echo B
echo For further information, see DUHELP help program
:END
echo ON